home *** CD-ROM | disk | FTP | other *** search
/ The Fatted Calf / The Fatted Calf.iso / Applications / Communication / NewsBase / Source / IDatumD.h < prev    next >
Text File  |  1993-01-12  |  194b  |  15 lines

  1. #import <objc/Object.h>
  2.  
  3. @interface IDatumD:Object
  4. {
  5.     char     *key;
  6.     id        data;
  7. }
  8.  
  9. - initWithKey:(const char *)aKey andData:aDatum;
  10. - (const char *)key;
  11. - (void)setData:aDatum;
  12. - data;
  13.  
  14. @end
  15.